home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / Linux / options.mk
Encoding:
Text File  |  1995-05-19  |  658 b   |  34 lines

  1. #
  2. # Linux/options.mk ---    Part of Makefile for PFE, compiler options for Linux.
  3. #
  4.  
  5. PREFIX    = /usr/local
  6. PFELIB    = $(PREFIX)/lib/pfe
  7. PFEHLP    = $(PFELIB)/help
  8.  
  9. # specifying -ansi -pedantic disables global register variables
  10. CC    = gcc -m486 -pipe -Wall #-ansi -pedantic
  11.  
  12. # comment out -DUNROLL_NEXT when you run it on a Pentium
  13. OPTIM    = -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
  14.  
  15. DEBUG    = -g -O
  16.  
  17. CL    = $(CC)
  18. CPP    = $(CC) -E
  19.  
  20. OPTIONS    =
  21. LIBS    = -ltermcap -lm
  22.  
  23. # It's possible to use the improved ncurses library like this
  24. # but it has no advantages.
  25. #OPTIONS = -I/usr/include/ncurses
  26. #LIBS    = -lncurses -lm
  27.  
  28. STRIP    = -s
  29. LFLAGS    = 
  30. TERM_O    = termunix$o
  31. SYS_O    = unix$o
  32.  
  33.  
  34.